home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970929-19971216 / 000197_news@newsmaster….columbia.edu _Wed Oct 29 09:52:09 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA22920
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 29 Oct 1997 09:52:09 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA02509
  7.     for kermit.misc@watsun; Wed, 29 Oct 1997 09:52:08 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Funky display of VMS editor in kermit...
  12. Date: 29 Oct 1997 14:52:07 GMT
  13. Organization: Columbia University
  14. Lines: 39
  15. Message-ID: <637iin$nd3$1@apakabar.cc.columbia.edu>
  16. References: <34569B4B.F328E2FF@earthlink.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7978
  19.  
  20. In article <34569B4B.F328E2FF@earthlink.net>,
  21. Bill  <pearson@earthlink.net> wrote:
  22. : Thanks again, Frank, for the prompt response to my previous post. :)
  23. : I'm using K95 on Intel NT4.0 to connect to an OpenVMS/Alpha via TCP/IP on
  24. : ethernet.
  25. : Problem:
  26. : I'm able to connect fine and do DCL commands fine, but when I go to edit a
  27. : text file ($edit/tpu) ... garbage!  The screen goes to pieces, and I get a
  28. : lot of, what looks like, escape codes.  $edit/edt seems to work ok, but edt
  29. : is lame after tpu!
  30. : Is it my local definition or my remote, i.e. terminal definition in K95 or
  31. : VMS?  Or something completely different? (ba bup ba bup... :)
  32. : Terminal: _TNA401:    Device_Type: VT300_Series
  33. :    No Wrap            Scope              No Remote          Eightbit
  34. VT300_Series /EIGHTBIT.
  35.  
  36. : K-95> sho term
  37. : Terminal parameters:
  38. :    Bytesize: Command: 8 bits              Terminal: 7 bits
  39. Terminal bytesize = 7 bits.
  40.  
  41. A fatal combination.  Make them agree.  Tell VMS to:
  42.  
  43.   SET TERM /NOEIGHT
  44.  
  45. or tell K95 to:
  46.  
  47.   SET TERM BYTESIZE 8
  48.  
  49. See lots of pages in the manual ("Using C-Kermit", 2nd ed): 157, 304, 305,
  50. 528, etc.
  51.  
  52. - Frank